home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
programs_-_include
/
ASM-ARM
/
LEDS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-17
|
412b
|
25 lines
/*
* include/asm-arm/leds.h
*
* Copyright (C) 1998 Russell King
*
* Event-driven interface for LEDs on machines
*
* Added led_start and led_stop- Alex Holden, 28th Dec 1998.
*/
#ifndef ASM_ARM_LEDS_H
#define ASM_ARM_LEDS_H
typedef enum {
led_idle_start,
led_idle_end,
led_timer,
led_start,
led_stop
} led_event_t;
/* Use this routine to handle LEDs */
extern void leds_event(led_event_t);
#endif